home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / Preferences.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  1.3 KB  |  62 lines

  1.  
  2. /* $Id: Preferences.h,v 1.1.1.1 1993/03/18 03:35:19 davis Exp $ */
  3.  
  4. #import <objc/Object.h>
  5. #import <dpsclient/event.h>        /* NXPoint */
  6.  
  7. @interface Preferences:Object
  8. {
  9.     id    window;                /* Preferences panel        */
  10.  
  11.     id constantUpdateMatrix;        /*  When should the plot be    */
  12.     int constantUpdate;            /*  updated (replotted)?    */
  13.  
  14.     id newDocumentButton;
  15.     BOOL newDocument;            /*  Should we create an     */
  16.                     /*  untitled plot at launch?    */
  17.  
  18.     id defaultInspectorMatrix;
  19.     int    defaultInspector;        /*  What should the default     */
  20.                     /*  inspector be?        */
  21.  
  22.     id halvePlotMatrix;
  23.     BOOL halvePlot;            /*  Should the plot be         */
  24.                     /*  half-size as in 3.x?    */
  25.  
  26.     id addDataToCurrentButton;        /*  Services            */
  27.     id addDataToNewButton;
  28.  
  29.     id initFileField;            /* Currently unused        */
  30.     id initFileButton;
  31.     const char *initFile;
  32.     BOOL isInitFile;
  33.  
  34. }
  35.  
  36. - init;
  37. - free;
  38. - awakeFromNib;
  39.  
  40. - showPanel:sender;
  41.  
  42. - doSetConstantUpdate:sender;
  43. - (int)constantUpdate;
  44. - doSetNewDocument:sender;
  45. - (BOOL)newDocument;
  46. - doSetDefaultInspector:sender;
  47. - (int)defaultInspector;
  48. - doSetHalvePlot:sender;
  49. - (BOOL)halvePlot;
  50. - doSetAddDataToCurrent:sender;
  51. - (BOOL)addDataToCurrent;
  52. - doSetAddDataToNew:sender;
  53. - (BOOL)addDataToNew;
  54. - doSetIsInitFile:sender;
  55. - (BOOL)isInitFile;
  56. - doSetInitFile:sender;
  57. - doSetInitFileWithOpenPanel:sender;
  58. - (const char *)initFile;
  59.  
  60.  
  61. @end
  62.